-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "tc39-proposal-temporal",
"version": "2.0.0",
"description": "TC39 Temporal Proposal Polyfill",
"main": "index.js",
"module": "lib/index.mjs",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test:es7": "for t in $(ls test/*.mjs); do \"./$t\"; done",
"test:262": "npm run build && for FILE in $(find test262/temporal -type f -name '*.js' | grep -v 'test262/node.js'); do node -r ./test262/node.js $FILE; if [ $? = 0 ]; then echo 'OK ' $FILE; else echo 'FAIL ' $FILE; fi; done",
"test": "npm run test:es7 && npm run test:262",
"prepare": "npm run build",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pipobscure/tc39-temporal-polyfill.git"
},
"keywords": [
"TC39",
"Polyfill",
"Temporal"
],
"author": "Philipp Dunkel <[email protected]>",
"license": "MIT",
"devDependencies": {
"rollup": "^0.59.1",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"tape": "^4.9.1"
}
}