|
1 | 1 | {
|
2 |
| - "name": "fluent-spec", |
3 |
| - "description": "Specification and documentation for Fluent", |
4 |
| - "version": "1.0.0", |
5 |
| - "private": true, |
6 |
| - "scripts": { |
7 |
| - "bench": "node -r esm --harmony-async-iteration ./test/bench.js ./test/benchmarks/gecko_strings.ftl", |
8 |
| - "build:guide": "gitbook build guide build/guide", |
9 |
| - "build": "npm run --silent build:guide", |
10 |
| - "ci": "npm run --silent lint && npm test && npm run --silent test:ebnf", |
11 |
| - "clean": "rm -rf build", |
12 |
| - "deploy": "gh-pages -d build", |
13 |
| - "generate:ebnf": "node -r esm bin/ebnf.js ./syntax/grammar.js > ./spec/fluent.ebnf", |
14 |
| - "generate:fixtures": "make -sC test/fixtures", |
15 |
| - "generate": "npm run --silent generate:ebnf && npm run --silent generate:fixtures", |
16 |
| - "lint": "prettier --check **/*.js", |
17 |
| - "pretty": "prettier --write **/*.js", |
18 |
| - "test:ebnf": "node -r esm test/ebnf.js ./syntax/grammar.js ./spec/fluent.ebnf", |
19 |
| - "test:fixtures": "node -r esm test/parser.js ./test/fixtures", |
20 |
| - "test:unit": "node -r esm test/literals.js", |
21 |
| - "test:resolver": "mocha -u tdd -r ts-node/register ./resolver/test/**/*_test.ts", |
22 |
| - "test": "npm run --silent test:fixtures && npm run --silent test:unit", |
23 |
| - "watch": "tsc --watch" |
24 |
| - }, |
25 |
| - "homepage": "https://projectfluent.org", |
26 |
| - "repository": { |
27 |
| - "type": "git", |
28 |
| - "url": "git+https://github.com/projectfluent/fluent.git" |
29 |
| - }, |
30 |
| - "author": "Mozilla <[email protected]>", |
31 |
| - "license": "Apache-2.0", |
32 |
| - "bugs": { |
33 |
| - "url": "https://github.com/projectfluent/fluent/issues" |
34 |
| - }, |
35 |
| - "devDependencies": { |
36 |
| - "@types/minimist": "^1.2.0", |
37 |
| - "@types/mocha": "^5.2.7", |
38 |
| - "@types/node": "^12.0.4", |
39 |
| - "babylon": "^6.18.0", |
40 |
| - "cli-color": "^1.2.0", |
41 |
| - "difflib": "^0.2.4", |
42 |
| - "fluent": "^0.6.4", |
43 |
| - "fluent-syntax": "^0.7.0", |
44 |
| - "gh-pages": "^1.1.0", |
45 |
| - "gitbook-cli": "^2.3.0", |
46 |
| - "json-diff": "^0.5.2", |
47 |
| - "prettier": "^1.17.1", |
48 |
| - "mocha": "^6.1.4", |
49 |
| - "ts-node": "^8.2.0", |
50 |
| - "typescript": "^3.5.1" |
51 |
| - }, |
52 |
| - "dependencies": { |
53 |
| - "esm": "^3.2.25", |
54 |
| - "minimist": "^1.2.0" |
55 |
| - } |
| 2 | + "name": "fluent-spec", |
| 3 | + "description": "Specification and documentation for Fluent", |
| 4 | + "version": "1.0.0", |
| 5 | + "private": true, |
| 6 | + "scripts": { |
| 7 | + "bench": "node -r esm --harmony-async-iteration ./test/bench.js ./test/benchmarks/gecko_strings.ftl", |
| 8 | + "build:guide": "gitbook build guide build/guide", |
| 9 | + "build": "npm run --silent build:guide", |
| 10 | + "ci": "npm run --silent lint && npm test && npm run --silent test:ebnf", |
| 11 | + "clean": "rm -rf build", |
| 12 | + "deploy": "gh-pages -d build", |
| 13 | + "generate:ebnf": "node -r esm bin/ebnf.js ./syntax/grammar.js > ./spec/fluent.ebnf", |
| 14 | + "generate:fixtures": "make -sC test/fixtures", |
| 15 | + "generate": "npm run --silent generate:ebnf && npm run --silent generate:fixtures", |
| 16 | + "lint": "prettier --check **/*.js", |
| 17 | + "pretty": "prettier --write **/*.js", |
| 18 | + "test:ebnf": "node -r esm test/ebnf.js ./syntax/grammar.js ./spec/fluent.ebnf", |
| 19 | + "test:fixtures": "node -r esm test/parser.js ./test/fixtures", |
| 20 | + "test:unit": "node -r esm test/literals.js", |
| 21 | + "test:resolver": "mocha -u tdd -r ts-node/register ./test/resolver/**/*_test.ts", |
| 22 | + "test": "npm run --silent test:fixtures && npm run --silent test:unit", |
| 23 | + "watch": "tsc --watch" |
| 24 | + }, |
| 25 | + "homepage": "https://projectfluent.org", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/projectfluent/fluent.git" |
| 29 | + }, |
| 30 | + "author": "Mozilla <[email protected]>", |
| 31 | + "license": "Apache-2.0", |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/projectfluent/fluent/issues" |
| 34 | + }, |
| 35 | + "devDependencies": { |
| 36 | + "@types/minimist": "^1.2.0", |
| 37 | + "@types/mocha": "^5.2.7", |
| 38 | + "@types/node": "^12.0.4", |
| 39 | + "babylon": "^6.18.0", |
| 40 | + "cli-color": "^1.2.0", |
| 41 | + "difflib": "^0.2.4", |
| 42 | + "fluent": "^0.6.4", |
| 43 | + "fluent-syntax": "^0.7.0", |
| 44 | + "gh-pages": "^1.1.0", |
| 45 | + "gitbook-cli": "^2.3.0", |
| 46 | + "json-diff": "^0.5.2", |
| 47 | + "prettier": "^1.17.1", |
| 48 | + "mocha": "^6.1.4", |
| 49 | + "ts-node": "^8.2.0", |
| 50 | + "typescript": "^3.5.1" |
| 51 | + }, |
| 52 | + "dependencies": { |
| 53 | + "esm": "^3.2.25", |
| 54 | + "minimist": "^1.2.0" |
| 55 | + } |
56 | 56 | }
|
0 commit comments